home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / mac / Main / VP.mac / 00139.ls < prev    next >
Encoding:
Text File  |  1995-07-18  |  619 b   |  30 lines

  1. on enterFrame
  2.   repeat with channel = 1 to 28
  3.     set the visible of sprite channel to 1
  4.   end repeat
  5.   repeat with channel = 32 to 48
  6.     set the visible of sprite channel to 1
  7.   end repeat
  8.   repeat with channel = 28 to 31
  9.     set the visible of sprite channel to 0
  10.   end repeat
  11.   if rollOver(28) then
  12.     set the visible of sprite 28 to 1
  13.   end if
  14.   if rollOver(29) then
  15.     set the visible of sprite 29 to 1
  16.   end if
  17.   if rollOver(30) then
  18.     set the visible of sprite 30 to 1
  19.   end if
  20.   if rollOver(31) then
  21.     set the visible of sprite 31 to 1
  22.   else
  23.     nothing()
  24.   end if
  25. end
  26.  
  27. on exitFrame
  28.   go(marker(0))
  29. end
  30.